home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / patches / csfix.lha / csfix / Source / defs.h < prev    next >
Text File  |  1994-11-20  |  323b  |  12 lines

  1. typedef unsigned char BOOL;
  2. typedef unsigned char BYTE;
  3. #define FALSE 0
  4. #define TRUE 1
  5. #define NOT !
  6. #define repeat do
  7. #define until(cond) while(NOT(cond))
  8. #define BLANK ' '  /* space */
  9. #define EOS '\0'   /* end of string */
  10. #define STREQ(s1,s2) (strcmp(s1,s2) == 0)
  11. #define NULLSTR(s) (s[0] == EOS)
  12. #define ODD(n) (n & 1)